home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_13_12
/
taylor2
/
gpibout.cpp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-11-06
|
350 b
|
20 lines
// gpibout.cpp
#include <iostream.h>
#include <stdlib.h>
#include "gpibio.h"
// OUTPUT CLASS FUNCTIONS
gpibout::gpibout(int d,int b) : gpibio(b) // constructor
{
device = dvr[b]->open_device(d);
}
// gout << string
gpibout & gpibout::operator <<(char _FAR *s)
{
sput(s);
return (*this);
}
... //[full source included on code disk -mb]